Skip to main content

Model Selection

Outter provides flexible model selection, allowing you to choose the best AI engine for your use case. Whether you need a general-purpose LLM, a domain-specific model, or an efficient self-hosted solution, Outter ensures seamless integration across multiple providers.

How It Works

Outter is provider-agnostic, meaning you can dynamically switch the underlying AI engine per request. When making an API call, you can specify a model such as OpenAI’s gpt-4o, Anthropic’s claude-3.7, or Outter’s own fine-tuned models (olivaw-series). Outter will route the request to the appropriate external API or internally hosted model, ensuring the best performance and cost-efficiency for your needs.


Supported Providers & Models

Outter supports a range of third-party and custom models, categorized by capability, context length, and cost efficiency.

OpenAI Models

Well-known for general-purpose text generation, reasoning, and chat applications.
Best for: Conversational AI, general writing, structured outputs.

ModelDescription
gpt-4.5OpenAI's newest general-purpose LLM, released in February 2025. Offers enhanced natural language processing and improved understanding of user input.
o3-miniLatest reasoning model with enhanced abilities, structured outputs, and text-only processing. 200,000 token input, 100,000 token output.
o1Capable model in the o1 series with enhanced reasoning abilities, structured outputs, and text/image processing. 200,000 token input, 100,000 token output.
gpt-4oHigh-performance OpenAI model, optimized for fast inference and high accuracy.

Example Usage: Ticketing Chatbot → model: "gpt-4o"


Anthropic Claude Models

Designed for long-context, conversational AI with high safety standards.
✅ Best for: Large-context reasoning, interactive assistants, multi-step workflows.

ModelDescription
Claude 3.7 SonnetReleased in February 2025, this hybrid reasoning model automatically switches between fast responses and detailed reasoning mode for complex queries. It supports extended token limits and enhanced accuracy.
Claude 3.5 SonnetReleased in late 2024, this model introduced "computer use" capabilities, allowing interaction with on-screen elements like tabs, forms, and buttons. It excels at multitasking and contextual reasoning.
Claude 3.0 OpusLarge, powerful model for complex tasks. High accuracy but slower and more expensive than Sonnet.
Claude 3.0 HaikuSmaller, faster model. Ideal for quick responses and simpler tasks. More cost-effective for high-volume use.

📌 Example Usage: Teacher Onboarding Copilot → model: "claude-3-sonnet"


Mistral AI & Hugging Face Models

Lightweight and cost-efficient open-source models that can be hosted on Outter.
Best for: Fast inference, cost-sensitive applications, self-hosting options.

ModelDescription
mistral-7BCompact model for cost-effective AI generation.
mixtral-8x7BA mixture-of-experts model balancing speed and depth.
distilbert-base-uncased-finetuned-sst-2-englishSentiment analysis model from Hugging Face.

Example Usage: Fast response chatbot → model: "mistral-7B"


Outter’s Custom Models: The Olivaw Series

Outter also offers fine-tuned models for specific domains, ensuring better performance on specialized tasks. These models are optimized using Retrieval-Augmented Generation (RAG) and context-aware fine-tuning, making them more precise for structured workflows like ticketing, education, and workflow automation.

ModelDomainDescription
olivaw-ta2Ticketing AIOptimized for event-based queries, integrates real-time event data.
olivaw-ea1Education AIFine-tuned for course creation, interactive learning assistants.
olivaw-rm3Retail & Marketing AIDesigned for product recommendations and content generation.

Example Usage:

  • Ticketing Chatbot → model: "olivaw-ta2"
  • Teacher Onboarding Copilot → model: "olivaw-ea1"

When to Choose Different Models

Use CaseRecommended Model
General chat & reasoninggpt-4o, claude-3-sonnet
Large-context responsesclaude-3-7-sonnet, mistral-7B
Cost-sensitive applicationsmistral-7B, distilbert-base
Ticketing recommendationsolivaw-ta2
Education & course buildingolivaw-ea1
AI-powered product suggestionsolivaw-rm3

How to Select a Model in API Calls

You can specify the model per request in Outter’s API.

{
"model": "olivaw-ta2",
"user_id": "u7ef95ca7",
"session_id": "chat-session-fe385582",
"messages": [
{"role": "user", "content": "What are some fun things to do in Barcelona today?"}
]
}